home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1996 October / Designer's Club 1996 October.iso / mac / Idea Source / POTTS.DIR / 00017_Clay.ls < prev    next >
Encoding:
Text File  |  1996-09-13  |  1.6 KB  |  52 lines

  1. on mouseDown
  2.   global startat
  3.   if (the movieTime of sprite 9 > 250) and (the movieTime of sprite 9 < 500) then
  4.     set the movieRate of sprite 9 to 0
  5.     set startat to the movieTime of sprite 9
  6.     go("demo1")
  7.     exit
  8.   end if
  9.   if (the movieTime of sprite 9 > 515) and (the movieTime of sprite 9 < 730) then
  10.     set the movieRate of sprite 9 to 0
  11.     set startat to the movieTime of sprite 9
  12.     go("demo2")
  13.     exit
  14.   end if
  15.   if (the movieTime of sprite 9 > 800) and (the movieTime of sprite 9 < 1020) then
  16.     set the movieRate of sprite 9 to 0
  17.     set startat to the movieTime of sprite 9
  18.     go("demo3")
  19.     exit
  20.   end if
  21.   if (the movieTime of sprite 9 > 1025) and (the movieTime of sprite 9 < 1273) then
  22.     set the movieRate of sprite 9 to 0
  23.     set startat to the movieTime of sprite 9
  24.     go("demo4")
  25.     exit
  26.   end if
  27.   if (the movieTime of sprite 9 > 1280) and (the movieTime of sprite 9 < 1500) then
  28.     set the movieRate of sprite 9 to 0
  29.     set startat to the movieTime of sprite 9
  30.     go("demo5")
  31.     exit
  32.   end if
  33.   if (the movieTime of sprite 9 > 1510) and (the movieTime of sprite 9 < 1680) then
  34.     set the movieRate of sprite 9 to 0
  35.     set startat to the movieTime of sprite 9
  36.     go("demo6")
  37.     exit
  38.   end if
  39.   if (the movieTime of sprite 9 > 1690) and (the movieTime of sprite 9 < 1960) then
  40.     set the movieRate of sprite 9 to 0
  41.     set startat to the movieTime of sprite 9
  42.     go("demo7")
  43.     exit
  44.   end if
  45.   if (the movieTime of sprite 9 > 1970) and (the movieTime of sprite 9 < 2170) then
  46.     set the movieRate of sprite 9 to 0
  47.     set startat to the movieTime of sprite 9
  48.     go("demo8")
  49.     exit
  50.   end if
  51. end
  52.